home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1996 March
/
EnigmA AMIGA RUN 05 (1996)(G.R. Edizioni)(IT)[!][issue 1996-03][Skylink CD IV].iso
/
earcd
/
program
/
ixemlsrc.lha
/
ixemul
/
static
/
Makefile.in
< prev
next >
Wrap
Makefile
|
1996-01-11
|
1KB
|
58 lines
#### Start of system configuration section. ####
srcdir = @srcdir@
ifeq ($(srcdir),.)
srcdir = ../../..
endif
VPATH := $(srcdir)
# Common prefix for machine-independent installed files.
prefix = @prefix@
# Common prefix for machine-dependent installed files.
exec_prefix = @exec_prefix@
bindir = $(exec_prefix)/bin
libdir = $(exec_prefix)/Sys/libs
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
CC = @CC@
CFLAGS = @CFLAGS@
LDFLAGS = @LDFLAGS@
RANLIB = @RANLIB@
AR = ar
#### End system configuration section ####
FLAVOR_CFLAGS = -m$(CPU) -m$(FPU) -f$(BASE)
OTHER_CFLAGS = -fomit-frame-pointer
ALL_CFLAGS = $(CFLAGS) $(FLAVOR_CFLAGS) $(OTHER_CFLAGS) $(INCS) $(DEFS)
DEFS = -DSTATIC_LIBRARY -DTM_GMTOFF=tm_gmtoff -DTM_ZONE=tm_zone
INCS = -I$(srcdir) -I$(srcdir)/../library -I$(srcdir)/../include
.c.o:
$(CC) $(ALL_CFLAGS) -c $< -o $@
SRC = asctime.c localtime.c errlst.c siglist.c popen.c rand48.c \
fts.c regexp.c regerror.c regsub.c regex.c getopt.c
OBJ = $(SRC:.c=.o)
libstatic.a: $(OBJ)
rm -f $@
$(AR) rc $@ $(OBJ)
$(RANLIB) $@
clean:
rm -rf *baserel
clobber: clean
rm -f Makefile